home *** CD-ROM | disk | FTP | other *** search
/ Dino Crisis Digital Press Kit / Dino Crisis Digital Press Kit.iso / mac / Xtras / Behavior Library for Java.cst / 00006_Script_GotoMarkerExitFrame < prev    next >
Text File  |  1998-04-08  |  964b  |  39 lines

  1. -- Marker  Go Marker on ExitFrame
  2.  
  3. -- nav
  4. -- Behavior Library 1.1 for Java
  5. -- drag to a sprite 
  6.  
  7.  
  8. -- sends playhead to a frame with the chosen marker on exitFrame event
  9.  
  10. property  whichLabel
  11.  
  12. on exitFrame me
  13.   init me
  14. end
  15.  
  16. on init me
  17.     case ( whichLabel ) of:
  18.       #Previous: go to marker( -1 )
  19.       #Loop:     go to marker(  0 )
  20.       #Next:     go to marker(  1 )
  21.       otherwise:
  22.         go to whichLabel    
  23.     end case
  24. end
  25.  
  26.  
  27.  
  28.  
  29. ---
  30.  
  31. on getPropertyDescriptionList
  32.   set p_list = [     #WhichLabel: [ #comment:   "Destination Marker:",                     #format:   #marker, #default:  "#Loop" ]]
  33.   return p_list
  34. end
  35.  
  36. on getBehaviorDescription
  37.   return "Moves the Playback Head to a designated marker when exitFrame occurs.  Drag to a sprite." && RETURN & "PARAMETERS:" && RETURN & "ï Destination Marker - Choose from a list of all marker names in the current movie or choose Previous, Loop (Current), or Next."  
  38. end
  39.